home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / PSK.ZIP / EDIT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-11  |  668 b   |  35 lines

  1. /*
  2.     edit.H
  3.  
  4.     Data Entry Editor Header File
  5.  
  6.     Copyright (C) 1992, Geoff Friesen B.Sc.
  7.     All rights reserved.
  8.  
  9.     Borland C++ 3.1
  10. */
  11.  
  12. /* Common Picture Types */
  13.  
  14. #define    DATEPIC    "99/99/9999"
  15. #define PHONPIC "999-9999"
  16. #define    TIMEPIC    "99:99"
  17.  
  18. #define    EDIT_FETCH    0
  19. #define    EDIT_DISP    1
  20.  
  21. #ifdef __cplusplus
  22. extern "C"
  23. {
  24. #endif
  25.  
  26. int    _editc    (char *c, int width, int operation);
  27. int    _editd    (char *d, int operation);
  28. int    _editl    (char **l, int *d, int operation);
  29. int    _editn    (double *n, int width, int dd, int operation);
  30. int    _editp    (char *buf, char *pic, int operation);
  31. void    format    (char *buf, char *dat, char *pic);
  32.  
  33. #ifdef __cplusplus
  34. }
  35. #endif